/* RESET */
@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

i {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
}

ol,
ul {
    list-style: none;
}

a:focus {
    outline-style: none;
}

input,
textarea,
select,
button {
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    border: none;
}

textarea {
    resize: none
}

input::-ms-clear {
    display: none;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "font1";
    src: url("../font/manrope-light-4.otf");
}

@font-face {
    font-family: "font2";
    src: url("../font/manrope-regular-6.otf");
}

@font-face {
    font-family: "font3";
    src: url("../font/manrope-semibold-7.otf");
}

body {
    font-size: 16px;
    color: #343f52;
    font-family: "font1", sans-serif;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    scroll-behavior: smooth;
    --themeColor: #219084;
    --themeColor2: #0fb377;
    background: rgb(254, 254, 254);
}


::selection {
    background: var(--themeColor);
    color: #fff;
}

:focus {
    outline-color: var(--themeColor);
}

img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.nav-tab>.item {
    cursor: pointer;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.hd::-webkit-scrollbar {
    width: 5px;
    height: 1px;
}

.hd::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: rgb(136, 136, 136);
}

.hd::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgb(241, 241, 241);
}

.clamp1 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp2 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.container {
    box-sizing: border-box;
    width: 1290px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .container {
        width: 1110px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 540px;
    }
}

@media (max-width: 580px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

.null>a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #959ca9;
    font-size: 16px;
    font-family: font2;
}

.norelative {
    position: static !important;
}

.hover1:before,
.hover2:before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--themeColor2);
    top: 100%;
    left: 0;
    pointer-events: none;
    content: "";
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.7, 0, .2, 1);
}

.hover1:hover:before,
.hover2:hover:before {
    transform-origin: 0 50%;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(.4, 1, .8, 1);
}

.hover2:before {
    background: var(--themeColor);
}

#header {
    background: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#header .logo img {
    height: 60px;
}

#header .logo img:nth-child(2) {
    display: none;
}

#header .fir-menu a i.iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    background: #0fb277;
    font-size: 20px;
    color: white;
}

#header .fir-menu {
    display: flex;
}

#header .fir-menu li>.drop-down {
    font-size: 16px;
    color: white;
}

#header .fir-menu>li {
    position: relative;
}

#header .fir-menu>li>a {
    font-size: 16px;
    font-family: font3;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    padding: 0 20px;
}

#header .fir-menu>li>a>span {
    font-size: 12px;
    margin-left: 4px;
    margin-top: 4px;
    font-weight: bold;
}

#header .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    background: #fff;
    border-radius: 8px;
    padding: 20px 0;
    box-shadow: rgba(30, 34, 40, 0.06) 0px 0px 25px 0px;
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

#header li:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

#header .sub-menu::after {
    content: "";
    position: absolute;
    left: 0;
    top: -16px;
    width: 100%;
    height: 36px;
    z-index: 2;
}

#header .sub-menu.columns1>li {
    display: block;
    width: 300px;
}

#header .sub-menu.columns2>li {
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#header .sub-menu.columns3 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 32px 5px 24px 5px;
}

#header .sub-menu.columns3>li {
    width: 33.33%;
    border-right: 1px solid rgba(164, 174, 198, .2)
}

#header .sub-menu.columns3>li:last-child {
    border: none;
}

#header .sub-menu.columns3>li h6 {
    padding: 0 30px 10px;
    font-family: font3;
    color: var(--themeColor);
    font-size: 14px;
}

#header .sub-menu.columns4>li h6 {
    padding: 0 0px 10px;
}

#header .sub-menu.columns4 li .tit{
    display: block;
}

#header .sub-menu.columns4 li  .left{
    margin-right: 20px;
}

#header .sub-menu.columns4 li:first-child{
    width: calc(100% - 280px);
}

#header .sub-menu.columns4 li:last-child{
    width: 280px;
}

#header .sub-menu.columns4 .sides{
    display: flex;
    grid-gap: 4px;
    gap: 4px;
    margin-bottom: 8px;
    flex: 0 0 auto;
}
#header .sub-menu.columns4 .sides a{
    width: 138px;
    line-height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#header .sub-menu.columns4 .sides img{
    width: 36px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

#header .sub-menu.columns4 .more a{
    color: var(--themeColor);
    width: 40px;
}

#header .sub-menu.columns4 .span1{
  color: #999;
  font-size: 14px;
}

#header .sub-menu.columns4 .content{
    display: flex;
    padding: 0 0 0 24px;
}

#header .sub-menu.columns4 .left{
    width: 140px;
    flex-shrink: 0;
    flex-direction: column;
}

#header .sub-menu.columns4 .left a{
    line-height: 47px;
    display: block;
}

#header .sub-menu.columns4 .right{
    overflow-y: hidden;
    overflow-x: auto;
    /* width: calc(100% - 160px); */
    flex: 1 1 0%;
    flex-direction: column;
    display: flex;
    word-break: break-word;
}

#header .sub-menu.columns4 .item {
    margin: 20px 0 40px;
}

#header .sub-menu.columns4 .item img{
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

#header .sub-menu.columns4 .item a{
    line-height: 20px;
    vertical-align: middle;
    display: block;
    padding: 8px 24px;
}

#header .sub-menu.columns2>li>a {
    width: calc(50% - 15px);
}

#header .sub-menu.columns4>li{
    width: 50%;
}

#header .sub-menu>li>a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 24px;
    min-height: 76px;
}

#header .sub-menu>li>a:hover {
    background: #ebebeb;
}

#header .sub-menu>li>a .content {
    width: calc(100% - 56px);
    line-height: 20px;
    font-family: font3;
}

#header .sub-menu>li>a .content .title {
    font-size: 15px;
    color: #343f52;
    transition: all 0.3s ease;
}

#header .sub-menu>li>a .content .desc {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
}

#header .sub-menu>li>a:hover .content .title,
#header .sub-menu>li>a:hover .content .desc {
    color: var(--themeColor);
}

#header .btn-all {
    display: flex;
    font-family: font3;
    align-items: center;
}

#header .btn-all>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 2px solid white;
    padding: 0 20px;
    border-radius: 24px;
    font-size: 16px;
    margin-left: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#header .btn-all>a:first-child {
    margin-left: 0;
}

#header .btn-all .style1 {
    color: white;
}

#header .btn-all .style2 {
    color: #343f52;
    background: white;
}

#header .btn-all>a:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, .15);
}

#header.fixeds {
    position: fixed;
    background: white;
    -webkit-animation: menu_sticky 0.5s ease-in-out;
    animation: menu_sticky 0.5s ease-in-out;
    box-shadow: rgba(30, 34, 40, 0.06) 0px 0px 25px 0px;
}

#header.fixeds .fir-menu>li>a,
#header.deep-colour .fir-menu>li>a {
    color: #343f52;
}

#header.fixeds .logo img:nth-child(1),
#header.deep-colour .logo img:nth-child(1) {
    display: none;
}

#header.fixeds .logo img:nth-child(2),
#header.deep-colour .logo img:nth-child(2) {
    display: inline-block;
}

#header.fixeds .fir-menu>li>a>span,
#header.deep-colour .fir-menu>li>a>span {
    color: var(--themeColor);
}

#header.fixeds .btn-all>a,
#header.deep-colour .btn-all>a {
    color: white;
    background: var(--themeColor);
    border-color: var(--themeColor);
}

#header.deep-colour .btn-all>a.style1 {
    background: white;
    color: var(--themeColor);
}

#header.deep-colour .btn-all>a.style1:hover {
    background: var(--themeColor);
    color: white;
}

@-webkit-keyframes menu_sticky {
    0% {
        margin-top: -75px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes menu_sticky {
    0% {
        margin-top: -75px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    #header .fir-menu>li>a {
        padding: 0 12px;
    }
}

.mobile-fir-menu-bg,
.mobile-logo,
#header .moblie-nav-show {
    display: none;
}

@media (max-width: 992px) {
    #header .container {
        height: 78px;
    }

    #header .moblie-nav-show {
        display: block;
        width: 26px;
        border-top: 4px solid white;
        border-bottom: 4px solid white;
        padding: 6px 0;
        margin-left: 20px;
    }

    #header .moblie-nav-show span {
        display: block;
        width: 100%;
        height: 4px;
        background: white;
    }

    #header.fixeds .moblie-nav-show,
    #header.deep-colour .moblie-nav-show {
        border-color: var(--themeColor);
    }

    #header.fixeds .moblie-nav-show span,
    #header.deep-colour .moblie-nav-show span {
        background: var(--themeColor);
    }

    .mobile-fir-menu-bg {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 10;
        background: rgba(30, 34, 40, 0.7);
        transition: all 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .mobile-fir-menu-bg.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        padding: 30px 60px 30px 30px;
        position: relative;
    }

    .mobile-logo a {
        display: inline-block;
    }

    .mobile-logo span.btn {
        display: flex;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: #303339;
        color: white;
        font-size: 22px;
        position: absolute;
        right: 4px;
        z-index: 10;
    }

    #header .fir-menu {
        display: block;
        width: 300px;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        background: #1e2228;
        overflow-y: auto;
        z-index: 30;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        padding-bottom: 30px;
    }

    #header .fir-menu.active {
        transform: translateX(0);
    }

    #header .fir-menu>li>a {
        display: flex;
        padding: 6px 30px;
        line-height: 1.7;
        height: auto;
        justify-content: space-between;
        color: white !important;
    }

    #header .fir-menu>li>a>span {
        color: white !important;
    }

    #header li>.sub-menu,
    #header .sub-menu.columns3 {
        display: none;
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transition: none !important;
        position: static;
        width: auto;
        padding: 0;
        background: none;
    }

    #header .sub-menu.columns4>li h6{
        color: #fff;
        font-size: 15px;
    }

    #header .sub-menu.columns4>li a:hover h6{
        color: var(--themeColor);
    }

    #header .sub-menu.columns4 .span1{
        font-weight: bold;
    }

    #header .sub-menu.columns4>li a:hover .span1{
        color: var(--themeColor);
    }

    #header .sub-menu.columns4 .content{
        display: none;
    }
    
    #header .sub-menu.columns4 .item a{
        color: #fff;
        padding-left: 10px;
    }

    #header .sub-menu.columns4 .item{
        margin-bottom: 0;
        margin-top: 0;
    }

    #header .sub-menu>li {
        display: block;
        width: auto !important;
        padding: 0 30px;

    }

    #header .sub-menu>li>a {
        width: 100% !important;
        padding: 8px 0 8px 8px;
    }

    #header .sub-menu>li>a .content .title {
        color: white;
    }

    #header .sub-menu.columns3>li {
        border: none;
    }

    #header .sub-menu.columns3>li h6 {
        margin-top: 10px;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    #header .btn-all>a {
        display: none;
    }
}

#footer {
    padding: 70px 0 20px;
}

#footer .item-all {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

#footer .item {
    width: 16.66%;
    font-family: font3;
    padding: 0 15px;
}

#footer .title {
    line-height: 1.45;
    font-size: 18px;
    margin-bottom: 15px;
}

#footer .item ul li {
    margin-bottom: 8px;
}

#footer .item ul a {
    color: #60697b;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    transition: all 0.3s ease;
}

#footer .item ul a:hover {
    color: var(--themeColor);
}

#footer .item2 {
    width: 33.33%;
    padding: 0 15px;
}

#footer .item2 .socialize-link {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

#footer .item2 .socialize-link img {
    height: 22px;
    width: auto;
}

#footer .item2 .socialize-link a {
    display: inline-block;
    margin-right: 15px;
}

#footer .item2 .lead-xs {
    line-height: 1.7;
    font-size: 16px;
    font-family: font2;
    color: #60697b;
    margin-bottom: 20px;
}

#footer .item2 a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 24px;
    color: var(--themeColor);
    font-size: 16px;
    font-family: font3;
    border-radius: 8px;
    border: 2px solid var(--themeColor);
    transition: all 0.3s ease;
    white-space: nowrap;
}

#footer .item2 a.btn .iconfont {
    font-weight: bold;
    margin-left: 6px;
}

#footer .item2 a.btn:hover {
    background: var(--themeColor);
    color: white;
    transform: translateY(-4px);
}

#footer .cop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #60697b;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(164, 174, 198, 0.2);
}

#footer .cop .left {
    font-size: 16px;
    line-height: 1.7;
}

#footer .cop .f-menu {
    display: flex;
    font-family: font3;
    flex-wrap: wrap;
}

#footer .cop .f-menu>li {
    position: relative;
    margin-left: 15px;
}

#footer .cop .f-menu>li>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

#footer .cop .f-menu>li:hover>a {
    color: var(--themeColor);
}

#footer .cop .f-menu>li>a .iconfont {
    font-size: 12px;
    font-weight: bold;
    margin-left: 4px;
}

#footer .cop .f-menu>li.language>a {
    font-size: 14px;
}

#footer .cop .s-menu {
    display: none;
    background: white;
    box-shadow: rgba(30, 34, 40, 0.06) 0px 0px 25px 0px;
    padding: 20px 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    border-radius: 8px;
}

#footer .cop .s-menu>li>a {
    display: inline-flex;
    padding: 4px 30px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
    transition: all 0.3s ease;
}

#footer .cop .s-menu>li:hover>a {
    color: var(--themeColor);
}

#footer .cop .s-menu>li>a .iconfont {
    font-size: 12px;
    margin-left: 16px;
}

.common-email-address {
    background: var(--themeColor2);
    color: white;
    text-align: center;
    padding: 70px 0;
}

.common-email-address.deep-colour {
    background: var(--themeColor);
}

.common-email-address h2 {
    line-height: 1.3;
    font-family: font3;
    font-size: 36px;
    margin-bottom: 15px;
}

.common-email-address .description {
    line-height: 1.65;
    margin-bottom: 25px;
    font-size: 18px;
}

.common-email-address span {
    font-family: font2;
    margin-right: 10px;
}

.common-email-address span .iconfont {
    margin-right: 6px;
}

.common-email-address form {
    width: 50%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.common-email-address form input {
    width: calc(100% - 150px);
    height: 52px;
    padding: 12px 20px;
    font-size: 16px;
    color: #343f52;
    border-radius: 8px 0 0 8px;
}

.common-email-address form input.active {
    padding: 20px 20px 4px;
}

.common-email-address form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 52px;
    border-radius: 0 8px 8px 0;
    border: 2px solid white;
    font-size: 16px;
    font-family: font3;
    color: white;
    background: var(--themeColor2);
    box-shadow: rgba(30, 34, 40, 0.15) 0px 5px 15px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.common-email-address.deep-colour form button {
    background: var(--themeColor);
}

.common-email-address form button:hover {
    color: #343f52;
    background: white;
}

.common-email-address form .placeholder {
    position: absolute;
    left: 20px;
    font-size: 15px;
    color: #959ca9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.common-email-address form input.active+.placeholder {
    transform: translateX(-10px) translateY(-12px) scale(0.8);
}


.common-email-address2 {
    background: var(--themeColor2);
    color: white;
    padding: 40px 0;
}

.common-email-address2.deep-colour {
    background: var(--themeColor);
}

.common-email-address2 .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.common-email-address2 .left {
    width: 41.6%;
}

.common-email-address2 .left h2 {
    line-height: 1.3;
    font-family: font3;
    font-size: 36px;
    margin-bottom: 15px;
}

.common-email-address2 .left .description {
    line-height: 1.65;
    margin-bottom: 25px;
    font-size: 18px;
}

.common-email-address2 .left span {
    font-family: font2;
    margin-right: 10px;
}

.common-email-address2 .left span .iconfont {
    margin-right: 6px;
}

.common-email-address2 .left form {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.common-email-address2 .left form input {
    width: calc(100% - 150px);
    height: 52px;
    padding: 12px 20px;
    font-size: 16px;
    color: #343f52;
    border-radius: 8px 0 0 8px;
}

.common-email-address2 .left form input.active {
    padding: 20px 20px 4px;
}

.common-email-address2 .left form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 52px;
    border-radius: 0 8px 8px 0;
    border: 2px solid white;
    font-size: 16px;
    font-family: font3;
    color: white;
    background: var(--themeColor2);
    box-shadow: rgba(30, 34, 40, 0.15) 0px 5px 15px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.common-email-address2.deep-colour .left form button {
    background: var(--themeColor);
}

.common-email-address2 .left form button:hover {
    color: #343f52;
    background: white;
}

.common-email-address2 .left form .placeholder {
    position: absolute;
    left: 20px;
    font-size: 15px;
    color: #959ca9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.common-email-address2 .left form input.active+.placeholder {
    transform: translateX(-10px) translateY(-12px) scale(0.8);
}


.common-email-address2 .right {
    width: 41.6%;
    margin-left: 8.33%;
}

.common-evaluate {
    padding: 70px 0;
    background: rgb(246, 247, 249);
}

.common-evaluate.white {
    background: white;
}

.common-evaluate .title {
    margin-bottom: 90px;
}

.common-evaluate .title h2 {
    line-height: 1.3;
    font-size: 36px;
    font-family: font3;
    text-align: center;
}

.common-evaluate .item {
    padding: 40px;
    user-select: none;
    cursor: grab;
    border: 2px solid rgba(8, 60, 130, 0.06);
    background: white;
    border-radius: 8px;
}

.common-evaluate .item .icon {
    margin-bottom: 25px;
}

.common-evaluate .item .icon .iconfont {
    font-size: 16px;
    color: #fcc032;
}

.common-evaluate .item h3 {
    line-height: 1.4;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: font3;
}

.common-evaluate .item>p {
    line-height: 1.65;
    color: #60697b;
    font-size: 17px;
    margin-bottom: 20px;
    font-family: font2;
}

.common-evaluate .item .details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.common-evaluate .item .details .box-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.common-evaluate .item .details .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-evaluate .item .details .info {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.common-evaluate .item .details .info h5 {
    line-height: 1.4;
    font-size: 18px;
    font-family: font3;
}

.common-evaluate .item .details .info p {
    line-height: 1.65;
    color: #60697b;
    font-size: 16px;
    font-family: font2;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination span {
    border: 3px solid #aab0bc;
    width: 6px;
    height: 6px;
    opacity: 1;
    background: #aab0bc;
}

.swiper-pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: white;
}

@media (max-width: 1200px) {
    .common-email-address form {
        width: 58%;
    }

    .common-evaluate .title h2 {
        font-size: 32px;
    }

    .common-evaluate .swiper {
        padding-bottom: 60px;
    }

    .common-email-address h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    #footer {
        padding-top: 40px;
    }

    #footer .item {
        width: 33.33%;
        margin-top: 30px;
    }

    .common-email-address form {
        width: 83%;
    }

    .common-email-address2 .left h2 {
        font-size: 32px;
    }

    .common-email-address2 .left {
        width: 100%;
    }

    .common-email-address2 .right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .common-email-address h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    #footer .item {
        width: 50%;
    }

    #footer .item2 {
        width: 100%;
        margin-top: 30px;
    }

    #footer .cop {
        display: block;
        margin-top: 90px;
    }

    #footer .cop .left {
        margin-bottom: 10px;
    }

    #footer .cop .f-menu>li.language {
        width: 100%;
    }

    #footer .cop .f-menu>li {
        margin: 0 15px 0 0;
    }

    .common-email-address form {
        width: 100%;
    }

    .common-email-address2 .left h2 {
        font-size: 28px;
    }

    .common-evaluate .title h2 {
        font-size: 30px;
    }

    .common-email-address h2 {
        font-size: 28px;
    }
}

@media (max-width: 580px) {
    .common-evaluate .title h2 {
        font-size: 28px;
    }

    .common-email-address h2 {
        font-size: 26px;
    }
}